home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 27
/
CDROM27.iso
/
share
/
progra
/
mai
/
Files, Detecting existance of
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-07-14
|
237 b
|
9 lines
'Description: Detects if a file exists.
'Function FileExists (filename As String) As Integer
On Error Resume Next
x% = Len(Dir$(filename))
If Err Or x% = 0 Then FileExists = False Else FileExists = True
'End Function